home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / CDROM / ACDPlay / arexx / FadeIn.rexx < prev    next >
OS/2 REXX Batch file  |  1997-04-27  |  479b  |  14 lines

  1. /* FadeIn.rexx 1.0 by Martin Kresse
  2.    This script demonstrates the usage of the SETVOLUME command of ACDPlay. */
  3.  
  4. OPTIONS RESULTS                         /* demand 2nd results */
  5. address 'ACDPLAY'                       /* set destination for commands */
  6.  
  7. 'PLAY'                                  /* start audio play */
  8. 'GETVOLUME'                             /* get current volume */
  9.  
  10. do i = RESULT to 255
  11.     'SETVOLUME' i                       /* slowly fade volume up */
  12. end
  13.  
  14.